300
|
How can I change the font for entire item
Dim f
With AxComboBox1
.Columns.Add("Default")
.Items.AddItem("default font")
f = CreateObject("StdFont")
With f
.Name = "Tahoma"
.Size = 12
End With
With .Items
.ItemFont(.AddItem("new font")) = f
End With
End With
|
299
|
How do I vertically align a cell
![](images/excomboboxq299.png)
Dim h
With AxComboBox1
.DrawGridLines = EXCOMBOBOXLib.GridLinesEnum.exRowLines
.Columns.Add("MultipleLine").Def(EXCOMBOBOXLib.DefColumnEnum.exCellSingleLine) = False
.Columns.Add("VAlign")
With .Items
h = .AddItem("This is a bit of long text that should break the line")
.CellCaption(h,1) = "top"
.CellVAlignment(h,1) = EXCOMBOBOXLib.VAlignmentEnum.exTop
h = .AddItem("This is a bit of long text that should break the line")
.CellCaption(h,1) = "middle"
.CellVAlignment(h,1) = EXCOMBOBOXLib.VAlignmentEnum.exMiddle
h = .AddItem("This is a bit of long text that should break the line")
.CellCaption(h,1) = "bottom"
.CellVAlignment(h,1) = EXCOMBOBOXLib.VAlignmentEnum.exBottom
End With
End With
|
298
|
How can I change the position of an item
![](images/excomboboxq298.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.AddItem("Item 1")
.AddItem("Item 2")
.ItemPosition(.AddItem("Item 3")) = 0
End With
End With
|
297
|
How do I find an item based on a path
![](images/excomboboxq297.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.ItemData(.InsertItem(h,Nothing,"Child 2")) = 1234
.ExpandItem(h) = True
.ItemBold(.FindPath("Root 1\Child 1")) = True
End With
End With
|
296
|
How do I find an item
![](images/excomboboxq296.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.ItemBold(.FindItem("Child 2",0)) = True
End With
End With
|
295
|
How can I insert a hyperlink or an anchor element
![](images/excomboboxq295.png)
With AxComboBox1
.Columns.Add("Column")
With .Items
.CellCaptionFormat(.AddItem("Just an <a1>anchor</a> element ..."),0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
End With
With .Items
.CellCaptionFormat(.AddItem("Just another <a2>anchor</a> element ..."),0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
End With
End With
|
294
|
How do I find the index of the item based on its handle
![](images/excomboboxq294.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.ItemBold(.ItemByIndex(.ItemToIndex(h))) = True
End With
End With
|
293
|
How do I find the handle of the item based on its index
![](images/excomboboxq293.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.ItemBold(.ItemByIndex(1)) = True
End With
End With
|
292
|
How can I find the cell being clicked in a radio group
![](images/excomboboxq292.png)
Dim h
With AxComboBox1
.MarkSearchColumn = False
.SelBackColor = RGB(255,255,128)
.SelForeColor = RGB(0,0,0)
.Columns.Add("C1")
.Columns.Add("C2")
.Columns.Add("C3")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Radio 1"
.CellHasRadioButton(h,1) = True
.CellRadioGroup(h,1) = 1234
.CellCaption(h,2) = "Radio 2"
.CellHasRadioButton(h,2) = True
.CellRadioGroup(h,2) = 1234
.CellState(h,1) = 1
.CellBold(Nothing,.CellChecked(1234)) = True
End With
End With
|
291
|
Can I add a +/- ( expand / collapse ) buttons to each item, so I can load the child items later
![](images/excomboboxq291.png)
With AxComboBox1
.LinesAtRoot = EXCOMBOBOXLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("Default")
With .Items
.ItemHasChildren(.AddItem("parent item with no child items")) = True
.AddItem("next item")
End With
End With
|
290
|
Can I let the user to resize at runtime the specified item
![](images/excomboboxq290.png)
With AxComboBox1
.ScrollBySingleLine = True
.DrawGridLines = EXCOMBOBOXLib.GridLinesEnum.exRowLines
.Columns.Add("Default")
With .Items
.ItemAllowSizing(.AddItem("resizable item")) = True
.AddItem("not resizable item")
End With
End With
|
289
|
How can I change the size ( width, height ) of the picture
![](images/excomboboxq289.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.CellPicture(h,0) = AxComboBox1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.CellPictureWidth(h,0) = 24
.CellPictureHeight(h,0) = 24
.ItemHeight(h) = 32
h = .AddItem("Root 2")
.CellPicture(h,0) = AxComboBox1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.ItemHeight(h) = 48
End With
End With
|
288
|
How do I unselect an item
![](images/excomboboxq288.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.SelectItem(h) = False
End With
End With
|
287
|
How do I find the selected item
![](images/excomboboxq287.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.SelectItem(h) = True
.ItemBold(.SelectedItem(0)) = True
End With
End With
|
286
|
How do I select an item
![](images/excomboboxq286.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.SelectItem(h) = True
End With
End With
|
285
|
Can I display a button with some picture or icon inside
![](images/excomboboxq285.png)
Dim h
With AxComboBox1
.set_HTMLPicture("p1","c:\exontrol\images\zipdisk.gif")
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = " Button <img>p1</img> "
.CellCaptionFormat(h,1) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
.CellHAlignment(h,1) = EXCOMBOBOXLib.AlignmentEnum.RightAlignment
.CellHasButton(h,1) = True
.ItemHeight(h) = 48
End With
End With
|
284
|
Can I display a button with some picture or icon inside
![](images/excomboboxq284.png)
Dim h
With AxComboBox1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = " Button <img>1</img> "
.CellCaptionFormat(h,1) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
.CellHAlignment(h,1) = EXCOMBOBOXLib.AlignmentEnum.RightAlignment
.CellHasButton(h,1) = True
End With
End With
|
283
|
Can I display a button with some icon inside
![](images/excomboboxq283.png)
Dim h
With AxComboBox1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = " <img>1</img> "
.CellCaptionFormat(h,1) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
.CellHAlignment(h,1) = EXCOMBOBOXLib.AlignmentEnum.RightAlignment
.CellHasButton(h,1) = True
End With
End With
|
282
|
How can I assign multiple icon/picture to a cell
![](images/excomboboxq282.png)
Dim h
With AxComboBox1
.set_HTMLPicture("p1","c:\exontrol\images\zipdisk.gif")
.set_HTMLPicture("p2","c:\exontrol\images\auction.gif")
.Columns.Add("Default")
With .Items
h = .AddItem("text <img>p1</img> another picture <img>p2</img> and so on")
.CellCaptionFormat(h,0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
.CellPicture(h,0) = AxComboBox1.ExecuteTemplate("loadpicture(`c:\exontrol\images\colorize.gif`)")
.ItemHeight(h) = 48
.AddItem("Root 2")
End With
End With
|
281
|
How can I assign an icon/picture to a cell
![](images/excomboboxq281.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.CellPicture(h,0) = AxComboBox1.ExecuteTemplate("loadpicture(`c:\exontrol\images\zipdisk.gif`)")
.ItemHeight(h) = 48
.AddItem("Root 2")
End With
End With
|
280
|
How can I assign multiple icons/pictures to a cell
![](images/excomboboxq280.png)
Dim h
With AxComboBox1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.Columns.Add("Default")
With .Items
h = .AddItem("Root <img>1</img> 1, <img>2</img>, ... and so on ")
.CellCaptionFormat(h,0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
End With
End With
|
279
|
How can I assign multiple icons/pictures to a cell
![](images/excomboboxq279.png)
Dim h
With AxComboBox1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.CellImages(h,0) = "1,2,3"
End With
End With
|
278
|
How can I assign an icon/picture to a cell
![](images/excomboboxq278.png)
Dim h
With AxComboBox1
.Images("gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTq" & _
"lVq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m" & _
"0ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/y" & _
"NAOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=")
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.CellImage(h,0) = 1
.CellImage(.InsertItem(h,Nothing,"Child 1"),0) = 2
.CellImage(.InsertItem(h,Nothing,"Child 2"),0) = 3
.ExpandItem(h) = True
End With
End With
|
277
|
How can I get the handle of an item based on the handle of the cell
![](images/excomboboxq277.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.ItemBold(.CellItem(.ItemCell(h,0))) = True
End With
End With
|
276
|
How can I display a button inside the item or cell
![](images/excomboboxq276.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = " Button 1 "
.CellHAlignment(h,1) = EXCOMBOBOXLib.AlignmentEnum.RightAlignment
.CellHasButton(h,1) = True
h = .AddItem("Cell 2")
.CellCaption(h,1) = " Button 2 "
.CellHAlignment(h,1) = EXCOMBOBOXLib.AlignmentEnum.CenterAlignment
.CellHasButton(h,1) = True
End With
End With
|
275
|
How can I change the state of a radio button
![](images/excomboboxq275.png)
Dim h
With AxComboBox1
.MarkSearchColumn = False
.SelBackColor = RGB(255,255,128)
.SelForeColor = RGB(0,0,0)
.Columns.Add("C1")
.Columns.Add("C2")
.Columns.Add("C3")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Radio 1"
.CellHasRadioButton(h,1) = True
.CellRadioGroup(h,1) = 1234
.CellCaption(h,2) = "Radio 2"
.CellHasRadioButton(h,2) = True
.CellRadioGroup(h,2) = 1234
.CellState(h,1) = 1
End With
End With
|
274
|
How can I assign a radio button to a cell
![](images/excomboboxq274.png)
Dim h
With AxComboBox1
.MarkSearchColumn = False
.SelBackColor = RGB(255,255,128)
.SelForeColor = RGB(0,0,0)
.Columns.Add("C1")
.Columns.Add("C2")
.Columns.Add("C3")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Radio 1"
.CellHasRadioButton(h,1) = True
.CellRadioGroup(h,1) = 1234
.CellCaption(h,2) = "Radio 2"
.CellHasRadioButton(h,2) = True
.CellRadioGroup(h,2) = 1234
.CellState(h,1) = 1
End With
End With
|
273
|
How can I change the state of a checkbox
![](images/excomboboxq273.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Check Box"
.CellHasCheckBox(h,1) = True
.CellState(h,1) = 1
End With
End With
|
272
|
How can I assign a checkbox to a cell
![](images/excomboboxq272.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Check Box"
.CellHasCheckBox(h,1) = True
End With
End With
|
271
|
How can I display an item or a cell on multiple lines
![](images/excomboboxq271.png)
Dim h
With AxComboBox1
.ScrollBySingleLine = True
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "This is bit of text that's shown on multiple lines"
.CellSingleLine(h,1) = EXCOMBOBOXLib.CellSingleLineEnum.exCaptionWordWrap
End With
End With
|
270
|
How can I assign a tooltip to a cell
![](images/excomboboxq270.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "tooltip"
.CellToolTip(h,1) = "This is bit of text that's shown when the user hovers the cell"
End With
End With
|
269
|
How can I associate an extra data to a cell
![](images/excomboboxq269.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Cell 2"
.CellData(h,1) = "your extra data"
End With
End With
|
268
|
How do I enable or disable a cell
![](images/excomboboxq268.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Cell 2"
.CellEnabled(h,1) = False
End With
End With
|
267
|
How do I change the cell's foreground color
![](images/excomboboxq267.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Cell 2"
.CellForeColor(h,1) = RGB(255,0,0)
End With
End With
|
266
|
How do I change the visual effect for the cell, using your EBN files
![](images/excomboboxq266.png)
Dim h
With AxComboBox1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Cell 2"
.CellBackColor(h,1) = &H1000000
End With
End With
|
265
|
How do I change the cell's background color
![](images/excomboboxq265.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Cell 2"
.CellBackColor(h,1) = RGB(255,0,0)
End With
End With
|
264
|
How do I change the caption or value for a particular cell
![](images/excomboboxq264.png)
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
.CellCaption(.AddItem("Cell 1"),1) = "Cell 2"
End With
End With
|
263
|
How do I get the handle of the cell
![](images/excomboboxq263.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.CellBold(Nothing,.ItemCell(h,0)) = True
End With
End With
|
262
|
How do I retrieve the focused item
![](images/excomboboxq262.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.ItemBold(.FocusItem) = True
End With
End With
|
261
|
How do I get the number or count of child items
![](images/excomboboxq261.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.AddItem(.ChildCount(h))
End With
End With
|
260
|
How do I enumerate the visible items
![](images/excomboboxq260.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
h = .AddItem("Root 2")
.ItemBold(.FirstVisibleItem) = True
.ItemBold(.NextVisibleItem(.FirstVisibleItem)) = True
End With
End With
|
259
|
How do I enumerate the siblings items
![](images/excomboboxq259.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
h = .AddItem("Root 2")
.ItemBold(.NextSiblingItem(.FirstVisibleItem)) = True
.ItemBold(.PrevSiblingItem(.NextSiblingItem(.FirstVisibleItem))) = True
End With
End With
|
258
|
How do I get the parent item
![](images/excomboboxq258.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.ItemBold(.ItemParent(.ItemChild(h))) = True
End With
End With
|
257
|
How do I get the first child item
![](images/excomboboxq257.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.ItemBold(.ItemChild(h)) = True
End With
End With
|
256
|
How do I enumerate the root items
![](images/excomboboxq256.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
h = .AddItem("Root 2")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ItemBold(.RootItem(0)) = True
.ItemUnderline(.RootItem(1)) = True
End With
End With
|
255
|
I have a hierarchy, how can I count the number of root items
![](images/excomboboxq255.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root 1")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
h = .AddItem("Root 2")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.AddItem(.RootCount)
End With
End With
|
254
|
How can I make an item unselectable, or not selectable
![](images/excomboboxq254.png)
Dim h
With AxComboBox1
.Columns.Add("Column")
With .Items
h = .AddItem("unselectable - you can't get selected")
.SelectableItem(h) = False
.AddItem("selectable")
End With
End With
|
253
|
How can I hide or show an item
![](images/excomboboxq253.png)
Dim h
With AxComboBox1
.Columns.Add("Column")
With .Items
h = .AddItem("hidden")
.ItemHeight(h) = 0
.SelectableItem(h) = False
.AddItem("visible")
End With
End With
|
252
|
How can I change the height for all items
![](images/excomboboxq252.png)
With AxComboBox1
.DefaultItemHeight = 32
.Columns.Add("Column")
.Items.AddItem("One")
.Items.AddItem("Two")
End With
|
251
|
How do I change the height of an item
![](images/excomboboxq251.png)
With AxComboBox1
.ScrollBySingleLine = True
.Columns.Add("Default")
With .Items
.ItemHeight(.AddItem("height")) = 128
End With
.Items.AddItem("enabled")
End With
|
250
|
How do I disable or enable an item
![](images/excomboboxq250.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.EnableItem(.AddItem("disabled")) = False
End With
.Items.AddItem("enabled")
End With
|
249
|
How do I display as strikeout a cell
![](images/excomboboxq249.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellStrikeOut(.AddItem("strikeout"),0) = True
End With
End With
|
248
|
How do I display as strikeout a cell or an item
![](images/excomboboxq248.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellCaptionFormat(.AddItem("gets <s>strikeout</s> only a portion of text"),0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
End With
End With
|
247
|
How do I display as strikeout an item
![](images/excomboboxq247.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.ItemStrikeOut(.AddItem("strikeout")) = True
End With
End With
|
246
|
How do I underline a cell
![](images/excomboboxq246.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellUnderline(.AddItem("underline"),0) = True
End With
End With
|
245
|
How do I underline a cell or an item
![](images/excomboboxq245.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellCaptionFormat(.AddItem("gets <u>underline</u> only a portion of text"),0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
End With
End With
|
244
|
How do I underline an item
![](images/excomboboxq244.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.ItemUnderline(.AddItem("underline")) = True
End With
End With
|
243
|
How do I display as italic a cell
![](images/excomboboxq243.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellItalic(.AddItem("italic"),0) = True
End With
End With
|
242
|
How do I display as italic a cell or an item
![](images/excomboboxq242.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellCaptionFormat(.AddItem("gets <i>italic</i> only a portion of text"),0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
End With
End With
|
241
|
How do I display as italic an item
![](images/excomboboxq241.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.ItemItalic(.AddItem("italic")) = True
End With
End With
|
240
|
How do I bold a cell
![](images/excomboboxq240.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellBold(.AddItem("bold"),0) = True
End With
End With
|
239
|
How do I bold a cell or an item
![](images/excomboboxq239.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.CellCaptionFormat(.AddItem("gets <b>bold</b> only a portion of text"),0) = EXCOMBOBOXLib.CaptionFormatEnum.exHTML
End With
End With
|
238
|
How do I bold an item
![](images/excomboboxq238.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.ItemBold(.AddItem("bold")) = True
End With
End With
|
237
|
How do I change the foreground color for the item
![](images/excomboboxq237.png)
Dim h,hC
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
hC = .InsertItem(h,Nothing,"Child 1")
.ItemForeColor(hC) = RGB(255,0,0)
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
End With
End With
|
236
|
How do I change the visual appearance for the item, using your EBN technology
![](images/excomboboxq236.png)
Dim h,hC
With AxComboBox1
.VisualAppearance.Add(1,"c:\exontrol\images\normal.ebn")
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
hC = .InsertItem(h,Nothing,"Child 1")
.ItemBackColor(hC) = &H1000000
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
End With
End With
|
235
|
How do I change the background color for the item
![](images/excomboboxq235.png)
Dim h,hC
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
hC = .InsertItem(h,Nothing,"Child 1")
.ItemBackColor(hC) = RGB(255,0,0)
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
End With
End With
|
234
|
How do I expand or collapse an item
![](images/excomboboxq234.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
End With
End With
|
233
|
How do I associate an extra data to an item
![](images/excomboboxq233.png)
With AxComboBox1
.Columns.Add("Default")
With .Items
.ItemData(.AddItem("item")) = "your extra data"
End With
End With
|
232
|
How do I get the number or count of items
![](images/excomboboxq232.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
End With
With .Items
.AddItem(.ItemCount)
End With
End With
|
231
|
How can I change at runtime the parent of the item
![](images/excomboboxq231.png)
Dim hC,hP
With AxComboBox1
.LinesAtRoot = EXCOMBOBOXLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("Default")
With .Items
hP = .AddItem("Root")
hC = .AddItem("Child")
.SetParent(hC,hP)
End With
End With
|
230
|
How can I sort the items
![](images/excomboboxq230.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
End With
.Columns.Item("Default").SortOrder = EXCOMBOBOXLib.SortOrderEnum.SortDescending
End With
|
229
|
How do I sort the child items
![](images/excomboboxq229.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
With .Items
h = .AddItem("Root")
.InsertItem(h,Nothing,"Child 1")
.InsertItem(h,Nothing,"Child 2")
.ExpandItem(h) = True
.SortChildren(h,0,False)
End With
End With
|
228
|
How can I remove or delete all items
![](images/excomboboxq228.png)
With AxComboBox1
.Columns.Add("Default")
.Items.AddItem("removed item")
.Items.RemoveAllItems()
End With
|
227
|
How can I remove or delete an item
![](images/excomboboxq227.png)
Dim h
With AxComboBox1
.Columns.Add("Default")
h = .Items.AddItem("removed item")
.Items.RemoveItem(h)
End With
|
226
|
How can I add or insert child items
![](images/excomboboxq226.png)
Dim h
With AxComboBox1
.LinesAtRoot = EXCOMBOBOXLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
h = .AddItem("Cell 1")
.CellCaption(h,1) = "Cell 2"
.CellCaption(.InsertItem(h,Nothing,"Cell 3"),1) = "Cell 4"
.CellCaption(.InsertItem(h,Nothing,"Cell 5"),1) = "Cell 6"
.ExpandItem(h) = True
End With
End With
|
225
|
How can I add or insert a child item
![](images/excomboboxq225.png)
With AxComboBox1
.LinesAtRoot = EXCOMBOBOXLib.LinesAtRootEnum.exLinesAtRoot
.Columns.Add("Default")
With .Items
.InsertItem(.AddItem("root"),Nothing,"child")
End With
End With
|
224
|
How can I add or insert an item
![](images/excomboboxq224.png)
Dim h
With AxComboBox1
.Columns.Add("C1")
.Columns.Add("C2")
With .Items
.CellCaption(.AddItem("Cell 1"),1) = "Cell 2"
h = .AddItem("Cell 3")
.CellCaption(h,1) = "Cell 4"
End With
End With
|
223
|
How can I add or insert an item
![](images/excomboboxq223.png)
With AxComboBox1
.Columns.Add("Default")
.Items.AddItem("new item")
End With
|
222
|
How can I get the columns as they are shown in the control's sortbar
Dim var_Object
With AxComboBox1
var_Object = .Columns.ItemBySortPosition(0)
End With
|
221
|
How can I access the properties of a column
![](images/excomboboxq221.png)
With AxComboBox1
.Columns.Add("A")
.Columns.Item("A").HeaderBold = True
End With
|
220
|
How can I remove all the columns
![](images/excomboboxq220.png)
With AxComboBox1
.Columns.Clear()
End With
|
219
|
How can I remove a column
![](images/excomboboxq219.png)
With AxComboBox1
.Columns.Remove("A")
End With
|
218
|
How can I get the number or the count of columns
Dim var_Count
With AxComboBox1
var_Count = .Columns.Count
End With
|
217
|
How can I change the font for all cells in the entire column
![](images/excomboboxq217.png)
Dim f
With AxComboBox1
f = CreateObject("StdFont")
With f
.Name = "Tahoma"
.Size = 12
End With
With .ConditionalFormats.Add("1")
.Font = f
.ApplyTo = EXCOMBOBOXLib.FormatApplyToEnum.exFormatToColumns
End With
.Columns.Add("Column")
.Items.AddItem(0)
.Items.AddItem(1)
End With
|
216
|
How can I change the background color for all cells in the column
![](images/excomboboxq216.png)
Dim var_ConditionalFormat
With AxComboBox1
var_ConditionalFormat = .ConditionalFormats.Add("1")
With var_ConditionalFormat
.BackColor = RGB(255,0,0)
.ApplyTo = EXCOMBOBOXLib.FormatApplyToEnum.exFormatToColumns
End With
.Columns.Add("Column")
.Items.AddItem(0)
.Items.AddItem(1)
End With
|
215
|
How can I change the foreground color for all cells in the column
![](images/excomboboxq215.png)
Dim var_ConditionalFormat
With AxComboBox1
var_ConditionalFormat = .ConditionalFormats.Add("1")
With var_ConditionalFormat
.ForeColor = RGB(255,0,0)
.ApplyTo = EXCOMBOBOXLib.FormatApplyToEnum.exFormatToColumns
End With
.Columns.Add("Column")
.Items.AddItem(0)
.Items.AddItem(1)
End With
|
214
|
How can I show as strikeout all cells in the column
![](images/excomboboxq214.png)
Dim var_ConditionalFormat
With AxComboBox1
var_ConditionalFormat = .ConditionalFormats.Add("1")
With var_ConditionalFormat
.StrikeOut = True
.ApplyTo = EXCOMBOBOXLib.FormatApplyToEnum.exFormatToColumns
End With
.Columns.Add("Column")
.Items.AddItem(0)
.Items.AddItem(1)
End With
|
213
|
How can I underline all cells in the column
![](images/excomboboxq213.png)
Dim var_ConditionalFormat
With AxComboBox1
var_ConditionalFormat = .ConditionalFormats.Add("1")
With var_ConditionalFormat
.Underline = True
.ApplyTo = EXCOMBOBOXLib.FormatApplyToEnum.exFormatToColumns
End With
.Columns.Add("Column")
.Items.AddItem(0)
.Items.AddItem(1)
End With
|
212
|
How can I show in italic all data in the column
![](images/excomboboxq212.png)
Dim var_ConditionalFormat
With AxComboBox1
var_ConditionalFormat = .ConditionalFormats.Add("1")
With var_ConditionalFormat
.Italic = True
.ApplyTo = EXCOMBOBOXLib.FormatApplyToEnum.exFormatToColumns
End With
.Columns.Add("Column")
.Items.AddItem(0)
.Items.AddItem(1)
End With
|
211
|
How can I bold the entire column
![](images/excomboboxq211.png)
Dim var_ConditionalFormat
With AxComboBox1
var_ConditionalFormat = .ConditionalFormats.Add("1")
With var_ConditionalFormat
.Bold = True
.ApplyTo = EXCOMBOBOXLib.FormatApplyToEnum.exFormatToColumns
End With
.Columns.Add("Column")
.Items.AddItem(0)
.Items.AddItem(1)
End With
|
210
|
How can I display a computed column and highlight some values that are negative or less than a value
![](images/excomboboxq210.png)
Dim var_ConditionalFormat
With AxComboBox1
.Columns.Add("A")
.Columns.Add("B")
.Columns.Add("(A+B)*1.19").ComputedField = "(%0 + %1) * 1.19"
With .Items
.CellCaption(.AddItem(1),1) = 2
End With
With .Items
.CellCaption(.AddItem(10),1) = 20
End With
var_ConditionalFormat = .ConditionalFormats.Add("%2 > 10")
With var_ConditionalFormat
.Bold = True
.ForeColor = RGB(255,0,0)
.ApplyTo = &H2
End With
End With
|
209
|
Can I display a computed column so it displays the VAT, or SUM
![](images/excomboboxq209.png)
With AxComboBox1
.Columns.Add("A")
.Columns.Add("B")
.Columns.Add("(A+B)*1.19").ComputedField = "(%0 + %1) * 1.19"
With .Items
.CellCaption(.AddItem(1),1) = 2
End With
With .Items
.CellCaption(.AddItem(10),1) = 20
End With
End With
|
208
|
How can I show a column that adds values in the cells
![](images/excomboboxq208.png)
With AxComboBox1
.Columns.Add("A")
.Columns.Add("B")
.Columns.Add("A+B").ComputedField = "%0 + %1"
With .Items
.CellCaption(.AddItem(1),1) = 2
End With
With .Items
.CellCaption(.AddItem(10),1) = 20
End With
End With
|
207
|
Is there any function to filter the control's data as I type, so the items being displayed include the typed characters
![](images/excomboboxq207.png)
Dim var_Column
With AxComboBox1
var_Column = .Columns.Add("Filter")
With var_Column
.FilterOnType = True
.DisplayFilterButton = True
.AutoSearch = EXCOMBOBOXLib.AutoSearchEnum.exContains
End With
.Items.AddItem("Canada")
.Items.AddItem("USA")
End With
|
206
|
Is there any function to filter the control's data as I type, something like filter on type
![](images/excomboboxq206.png)
Dim var_Column
With AxComboBox1
var_Column = .Columns.Add("Filter")
With var_Column
.FilterOnType = True
.DisplayFilterButton = True
End With
.Items.AddItem("Canada")
.Items.AddItem("USA")
End With
|
205
|
How can I programmatically filter a column
![](images/excomboboxq205.png)
With AxComboBox1
With .Columns.Add("Filter")
.DisplayFilterButton = True
.FilterType = EXCOMBOBOXLib.FilterTypeEnum.exNonBlanks
End With
.Items.AddItem()
.Items.AddItem("not empty")
.ApplyFilter()
End With
|
204
|
How can I show or display the control's filter
![](images/excomboboxq204.png)
With AxComboBox1
.Columns.Add("Filter").DisplayFilterButton = True
End With
|
203
|
How can I customize the items being displayed in the drop down filter window
![](images/excomboboxq203.png)
With AxComboBox1
With .Columns.Add("Custom Filter")
.DisplayFilterButton = True
.DisplayFilterPattern = False
.CustomFilter = "Excel Spreadsheets (*.xls )||*.xls|||Word Documents||*.doc|||Powerpoint Presentations||*.pps|||Text Documents (*.log,*.txt)||*." & _
"txt|*.log"
.FilterType = EXCOMBOBOXLib.FilterTypeEnum.exPattern
.Filter = "*.xls"
End With
.Items.AddItem("excel.xls")
.Items.AddItem("word.doc")
.Items.AddItem("pp.pps")
.Items.AddItem("text.txt")
.ApplyFilter()
End With
|
202
|
How can I change the order or the position of the columns in the sort bar
![](images/excomboboxq202.png)
With AxComboBox1
.SortBarVisible = True
.SortBarColumnWidth = 48
.Columns.Add("C1").SortOrder = EXCOMBOBOXLib.SortOrderEnum.SortAscending
.Columns.Add("C2").SortOrder = EXCOMBOBOXLib.SortOrderEnum.SortDescending
.Columns.Item("C2").SortPosition = 0
End With
|
201
|
How do I arrange my columns on multiple levels
![](images/excomboboxq201.png)
With AxComboBox1
.Columns.Add("S").Width = 32
.Columns.Add("Level 2").LevelKey = 1
.Columns.Add("Level 3").LevelKey = 1
.Columns.Add("Level 4").LevelKey = 1
.Columns.Add("Level 1").LevelKey = "2"
.Columns.Add("Level 2").LevelKey = "2"
.Columns.Add("Level 3").LevelKey = "2"
.Columns.Add("Level 4").LevelKey = "2"
.Columns.Add("E").Width = 32
End With
|